home *** CD-ROM | disk | FTP | other *** search
- package mil;
-
- import javax.microedition.lcdui.Displayable;
- import javax.microedition.lcdui.Form;
-
- public class MilHelp extends Form {
- private static MilImCache sImCache;
-
- public MilHelp(MilImCache var1) {
- super(Mil.sL.ghHead());
- sImCache = var1;
- ((Form)this).append(Mil.sL.ghT());
- ((Form)this).append(Mil.sL.ghA());
- ((Form)this).append(sImCache.getMan(0));
- ((Form)this).append(Mil.sL.ghY());
- ((Form)this).append(sImCache.getDiamond(0));
- ((Form)this).append(Mil.sL.ghDh());
- ((Form)this).append(Mil.sL.ghDt());
- ((Form)this).append(sImCache.getStone());
- ((Form)this).append(Mil.sL.ghSh());
- ((Form)this).append(Mil.sL.ghSt());
- ((Form)this).append(sImCache.getBlock());
- ((Form)this).append(Mil.sL.ghBh());
- ((Form)this).append(Mil.sL.ghBt());
- ((Form)this).append(sImCache.getMud());
- ((Form)this).append(Mil.sL.ghMh());
- ((Form)this).append(Mil.sL.ghMt());
- ((Form)this).append(Mil.sL.ghGt());
- ((Form)this).append(Mil.sL.ghGt2());
- ((Form)this).append(Mil.sL.ghGt3());
- ((Displayable)this).addCommand(Mil.sCmdOk);
- ((Displayable)this).setCommandListener(Mil.sMil);
- }
- }
-